home *** CD-ROM | disk | FTP | other *** search
- ;
- ; OLE_tour
- ;
- ; USAGE: OLE_tour
- ;
- ; $(C): (1994, Rocco Coluccelli, Bologna)
- ; $VER: OLE_tour 1.01 (10.Feb.1995)
- ;
-
- Set s1 "*nCannot find LIBS:translator.library...*n"
- Set s2 "*nCannot find DEVS:narrator.device...*n"
- Set s3 "*nCannot find the command SAY in any path...*n"
-
- If "$language" EQ "italiano"
-
- Set s1 "*nNon trovo LIBS:translator.library...*n"
- Set s2 "*nNon trovo DEVS:narrator.device...*n"
- Set s3 "*nNon trovo il comando SAY in nessun path...*n"
- EndIf
-
- ;
- ; Check library, device, commands...
- ;
- If NOT EXISTS LIBS:translator.library
- Echo "$s1"
- Skip End
- EndIf
-
- If NOT EXISTS DEVS:narrator.device
- Echo "$s2"
- Skip End
- EndIf
-
- Which >NIL: Say
- If WARN
- Echo "$s3"
- Skip End
- EndIf
-
-
- ;
- ; To be sure that SAY isn't already in memory, simply try to remove it
- ;
- Resident >NIL: SAY REMOVE
- Resident >NIL: `Which SAY` ADD PURE
-
- ;
- ; Launch one by one all scripts
- ;
- Rx rexx/intro.rexx
- Rx rexx/MissMSDOS.rexx
- Rx rexx/netprint.rexx
- Rx rexx/netOLEprint.rexx
- Rx rexx/punchMSDOS.rexx
- Rx rexx/netamiga.rexx
- Rx rexx/telephone.rexx
- Rx rexx/BillGoldenGates.rexx
-
- Lab End
-
- Resident >NIL: SAY REMOVE
- Avail >NIL: FLUSH
-